All Questions
Tagged with selenium-chromedriverwebdriver
876 questions
1vote
1answer
185views
Problem using python with selenium and getting error: net::ERR_HTTP2_PROTOCOL_ERROR
I had a MacBook and I was running a code in Python. I never had any problems with its execution. Last month, I bought a new MacBook "MacBook Air (M3)" and ran the same code. On the new ...
0votes
0answers
79views
How can i run selenium on cloud server properly
I'm using selenium on streamlit cloud server and for that i have issues related to chrome, chrome driver, their versioning. There are other threads about this issue but none is solving my problem. I'm ...
1vote
0answers
119views
Laravel/Dusk-Tests: keys() not working (e.g. ARROW_DOWN, ENTER, ..)
I'm kind of new to Laravel and Dusk-Tests and encountering issues with the Laravel\Dusk\Browser keys()-method. It looks like, that the sent commands are ignored by Chrome. This is the code: $browser-&...
0votes
1answer
169views
How to disable image/video download and How to make CSS disabled in selenium WebDriver of JAVA
I am using Chrome WebDriver latest version of now (Version 129.0.6668.59 (Official Build) (64-bit)). Chrome Driver version 129.0.6668.58 I want to get a title or head of any URL (Youtube, Instagram, ...
4votes
3answers
33kviews
Chrome Version 128.0.6613.85 Web driver issue [duplicate]
I have chrome browser of Version 128.0.6613.85 and i want to download the correct webdriver for it. I checked the official webdriver website but i can't find the correct version for it. i want the ...
0votes
0answers
279views
Selenium Not Working! selenium.common.exceptions.SessionNotCreatedException: Message: session not created: Chrome failed to start: exited normally
I am learning python and tring to use selenium login chrome account. Here is my option code: from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.common....
0votes
0answers
2kviews
Chromedriver and Chrome version error with puython
The current Chrome version is 127.0.6533.120. The Chromedriver version is 127.0.6533.119, which was automatically downloaded with the command: service = Service(executable_path=ChromeDriverManager()....
0votes
0answers
40views
Exception in thread "main" java.lang.NoClassDefFoundError in Eclipse
Exception in thread "main" java.lang.NoClassDefFoundError: dev/failsafe/Policy at org.seleniumhq.selenium.http/org.openqa.selenium.remote.http.ClientConfig.<clinit>(ClientConfig....
0votes
1answer
1kviews
How to setup Webdriver manager to use chromedriver in a MacOS app compiled with PyInstaller?
In my python script I am currently using webdriver_manager (text) to install the chrome webdriver. This webdriver is used to create a Selenium driver to navigate websites and collect HTML data. This ...
-1votes
0answers
156views
I an getting an error in my pycharm while runnning chromedriver()
C:\Users\suchi\PycharmProjects\pythonProject1.venv\Scripts\python.exe C:\Users\suchi\PycharmProjects\pythonProject1\test\demo.py There was an error managing chromedriver (error sending request for url ...
0votes
1answer
116views
Changing the download default directory used by ChromeDriver doesn't work
Problem statement I attempt to change the WebDriver’s download.default_directory, but for some odd reason, when we click a link to download a PDF, for example, it goes to the user’s Downloads folder ...
0votes
0answers
50views
How do I click change the country to a new one from the COUNTRY/REGION section using Selenium Webdriver
I am building a web scrapper but I want to be able to switch the country to another using Selenium. For instance I want to be able to click on the country button and select a new country or region? ...
0votes
0answers
83views
WebDriverError: unknown error: failed to create Chrome process even when chromedriver, google chrome, selenium are installed
My package.json looks like this: { "name": "hello", "version": "1.0.0", "main": "main.js", "devDependencies": { ...
0votes
0answers
421views
Chromedriver Giving Permission and Timeout Error
I’ve downloaded the latest version of chromedriver for Chrome version 125.0.6422.61 (64-bit). I have the file in my directory and the path (C:\Users\USER PC\Documents\Flatiron\Web_Scraping) in the ...
1vote
1answer
593views
Using Selenium, that can use browser cookies to stay logged in between sessions
I want to buy a product using Selenium, but every time it opens the browser and I register the purchase, I need to log in to the store site again to finalize the purchase. I don't want it to be like ...